home *** CD-ROM | disk | FTP | other *** search
- UNPROTECTING BASIC PROGRAMS
- Setup:
- A>BASIC
- LOAD any unprotected program
- DEF SEG
- BSAVE"UNPRO.BAS",&H400,&H8F
- (do the same for BASICA but call it something like UNPRO.BSA)
- (you may also need separate versions for different levels of PC-DOS)
-
- Unprotect:
- LOAD protected program
- DEF SEG
- BLOAD"UNPRO.BAS",&H400
- (The program in memory is now unprotected
- and can be listed, changed, or saved)
-
- (This procedure is from the IBMPCUG BBS in Washington
- and was originally from Chris Van Essen in Denver)